home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / openssh-client.config < prev    next >
Text File  |  2009-10-22  |  704b  |  27 lines

  1. #!/bin/sh
  2.  
  3. action=$1
  4. version=$2
  5.  
  6. # Source debconf library.
  7. . /usr/share/debconf/confmodule
  8. db_version 2.0
  9.  
  10. if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
  11.   version=1.2.27
  12.   cp -a /etc/ssh-nonfree /etc/ssh
  13. fi
  14.  
  15. # Was ssh-keysign's setuid bit turned off using the obsolete debconf
  16. # question? If so, turn this into a statoverride. (Ugh.)
  17. if dpkg --compare-versions "$2" lt 1:4.1p1-2 && \
  18.     db_get ssh/SUID_client && [ "$RET" = false ] &&
  19.     [ -x /usr/sbin/dpkg-statoverride ] && \
  20.     ! dpkg-statoverride --list /usr/lib/ssh-keysign && \
  21.     ! dpkg-statoverride --list /usr/lib/openssh/ssh-keysign; then
  22.     dpkg-statoverride --update --add root root 0755 \
  23.         /usr/lib/openssh/ssh-keysign
  24. fi
  25.  
  26. exit 0
  27.